forked from formkit/formkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"workspaces": [
"packages/*",
"examples"
],
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.45.0",
"@aws-sdk/client-s3": "^3.45.0",
"@aws-sdk/client-translate": "^3.56.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@microsoft/api-extractor": "^7.18.4",
"@nuxt/kit": "npm:@nuxt/kit-edge@latest",
"@nuxt/module-builder": "^0.1.7",
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.3",
"@size-limit/preset-app": "^5.0.1",
"@types/jest": "^26.0.23",
"@types/tailwindcss": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.25.0",
"@vitejs/plugin-vue-jsx": "^1.3.3",
"@vue/compiler-sfc": "^3.2.1",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.18",
"autoprefixer": "^10.4.0",
"axios": "^0.26.0",
"cac": "^6.7.3",
"chalk": "^4.1.1",
"clipboardy": "^3.0.0",
"eslint": "^7.32.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-vue": "^7.16.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"jest": "^27.0.3",
"nuxt3": "^3.0.0-27415326.3c563fa",
"ora": "^5.4.1",
"postcss": "^8.3.11",
"postcss-import": "^14.0.2",
"postcss-nesting": "^10.1.6",
"prettier": "^2.2.1",
"prompts": "^2.4.1",
"rollup": "^2.53.2",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"stylelint": "^14.0.1",
"stylelint-config-standard": "^23.0.0",
"tailwindcss": "^3.0.24",
"terser": "^5.14.2",
"ts-jest": "27.0.3",
"typescript": "4.4.3",
"unocss": "^0.33.2",
"vite": "^2.4.4",
"vue": "^3.0.0",
"windicss": "^3.5.2"
},
"license": "UNLICENSED",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --detectOpenHandles",
"build": "node scripts/cli.mjs --script build",
"build-test": "yarn build all && yarn test",
"publish": "node scripts/cli.mjs --script publish",
"local": "node scripts/cli.mjs --script local",
"translate": "node scripts/cli.mjs --script translate",
"cli": "node scripts/cli.mjs",
"dev": "vite --config ./examples/vite.config.ts --host",
"dev-build": "vite build --config ./examples/vite.config.ts",
"deploy": "node scripts/cli.mjs --script=deploy",
"nuxt-pack": "nuxt-module-build packages/nuxt",
"nuxt-dev": "nuxi dev packages/nuxt/playground",
"tailwind-dev": "vite packages/tailwindcss/playground --host",
"tailwind-css": "npx tailwindcss -c packages/tailwindcss/playground/tailwind.config.cjs -i packages/tailwindcss/playground/src/index.css -o packages/tailwindcss/playground/dist/index.css --watch"
},
"dependencies": {},
"size-limit": [
{
"path": "dist/packages/core/src/*.js",
"limit": "10 KB"
}
]
}