-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "panda-plugin-crv",
"version": "0.3.1",
"description": "A Panda CSS plugin for responsive variants",
"author": "Jon Ambas <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jonambas/panda-plugin-crv.git"
},
"bugs": {
"url": "https://github.com/jonambas/panda-plugin-crv/issues"
},
"homepage": "https://github.com/jonambas/panda-plugin-crv",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=basic",
"vite:prepare": "cd apps/vite-react && npm ci",
"vite:start": "cd apps/vite-react && npm run build && npm run preview",
"e2e": "playwright test --ui"
},
"dependencies": {
"ts-morph": "22.0.0"
},
"devDependencies": {
"@pandacss/dev": "0.41.0",
"@pandacss/types": "0.41.0",
"@playwright/test": "1.46.1",
"@types/node": "20.15.0",
"@vitest/coverage-v8": "1.6.0",
"prettier": "3.3.3",
"tsup": "8.2.4",
"typescript": "5.5.4",
"vitest": "1.6.0"
},
"keywords": [
"panda",
"pandacss",
"plugin",
"typescript"
]
}