-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "panda-plugin-ct",
"version": "0.1.2",
"description": "A Panda CSS plugin for alias design tokens",
"author": "Jon Ambas <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jonambas/panda-plugin-ct.git"
},
"bugs": {
"url": "https://github.com/jonambas/panda-plugin-ct/issues"
},
"homepage": "https://github.com/jonambas/panda-plugin-ct",
"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",
"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",
"base": "bun ./apps/fixtures/make.ts gen -s base"
},
"dependencies": {
"ts-morph": "22.0.0"
},
"devDependencies": {
"@pandacss/types": "0.45.1",
"@playwright/test": "1.46.1",
"@types/node": "20.16.14",
"@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"
]
}