-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 964 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 964 Bytes
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
{
"name": "@itsy/token",
"version": "1.0.4",
"description": "easy token generation for Vue 3",
"type": "module",
"main": "./dist/token.js",
"exports": "./dist/token.js",
"scripts": {
"dev": "vite example --config ./vite.config.js",
"build": "vite build",
"watch": "vitest watch",
"test": "vitest run",
"cp": "mkdir -p ./example/public/shiki && cp -r ./node_modules/shiki/{dist,languages,samples,themes} ./example/public/shiki",
"preversion": "pnpm test && pnpm build",
"version": "npm publish --access public",
"postversion": "git push --follow-tags"
},
"keywords": [
"design system",
"token",
"vue"
],
"files": [
"dist/"
],
"author": "Dave Honneffer",
"license": "MIT",
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.1",
"@vue/test-utils": "^2.0.2",
"happy-dom": "^6.0.4",
"shiki": "^0.10.1",
"vite": "^3.0.2",
"vitest": "^0.18.1",
"vue": "^3.2.37"
}
}