-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.21 KB
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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@aestheticfunction/dspack-export",
"version": "0.5.0",
"description": "Bootstrap a current-spec dspack design-system snapshot from a component codebase (React + Tailwind/shadcn, Vue 3 + Vuetify 3) through a framework-adapter layer",
"keywords": [
"dspack",
"design-system",
"design-tokens",
"shadcn",
"tailwind",
"react",
"exporter",
"ai-agents"
],
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"dspack-export": "dist/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"author": {
"name": "Ryan Dombrowski"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aestheticfunction/dspack-export.git"
},
"homepage": "https://github.com/aestheticfunction/dspack-export#readme",
"bugs": {
"url": "https://github.com/aestheticfunction/dspack-export/issues"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"generate:fixture": "npm run build && SOURCE_DATE_EPOCH=1781049600 node dist/cli.js generate --config fixtures/shadcn-demo/dspack-export.config.json",
"generate:fixture:vue": "npm run build && SOURCE_DATE_EPOCH=1781049600 node dist/cli.js generate --config fixtures/vuetify-demo/dspack-export.config.json",
"check:sync": "node scripts/check-sync.mjs",
"test:pack": "bash scripts/pack-test.sh"
},
"dependencies": {
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"@babel/types": "^7.28.5",
"@vue/compiler-sfc": "^3.5.38",
"ajv": "^8.17.0",
"minimist": "^1.2.8",
"react-docgen-typescript": "^2.4.0",
"typescript": "^5.5.0"
},
"devDependencies": {
"@radix-ui/react-slot": "^1.1.0",
"@types/babel__traverse": "^7.28.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.0.0",
"@types/react": "^18.3.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dspack-export-shipped": "npm:@aestheticfunction/dspack-export@^0.4.0",
"react": "^18.3.1",
"tailwind-merge": "^2.6.0",
"vitest": "^3.0.0",
"vue": "^3.5.38"
},
"files": [
"dist",
"src/emit/schema",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
}