forked from formkit/formkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.5 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"private": true,
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.529.1",
"@aws-sdk/client-s3": "^3.529.1",
"@aws-sdk/client-translate": "^3.529.1",
"@commitlint/config-conventional": "^17.8.1",
"@formkit/auto-animate": "1.0.0-beta.6",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@opentf/cli-pbar": "^0.1.8",
"@playwright/test": "^1.42.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.19.22",
"@types/postcss-import": "^14.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/server-renderer": "^3.4.21",
"@vue/shared": "^3.4.21",
"@vue/test-utils": "2.4.4",
"add": "^2.0.6",
"autoprefixer": "^10.4.18",
"axios": "^0.26.1",
"cac": "^6.7.14",
"chalk": "^4.1.2",
"clipboardy": "^3.0.0",
"commitlint": "^17.8.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vue": "^9.22.0",
"execa": "8.0.1",
"fs-extra": "^10.1.0",
"glob": "^7.2.3",
"husky": "^8.0.3",
"jest-leak-detector": "^29.7.0",
"jsdom": "^21.1.2",
"magic-string": "^0.30.8",
"ora": "^5.4.1",
"pathe": "^1.1.2",
"postcss": "^8.4.35",
"postcss-import": "^14.1.0",
"postcss-nesting": "^10.2.0",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"publint": "^0.2.7",
"rollup": "^3.29.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-pure": "^0.2.1",
"rollup-plugin-vue": "^6.0.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^23.0.0",
"tailwindcss": "^3.4.1",
"terser": "^5.29.1",
"tsup": "^8.0.2",
"typescript": "5.1.3",
"unplugin": "^1.9.0",
"unplugin-pure": "^0.1.1",
"vite": "^4.5.2",
"vite-plugin-replace": "^0.1.1",
"vitest": "^0.33.0",
"vue": "^3.4.21",
"windicss": "^3.5.6",
"zod": "^3.22.4"
},
"license": "UNLICENSED",
"scripts": {
"test": "vitest",
"build": "node scripts/cli.mjs --script build",
"build-test": "pnpm build all && pnpm 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",
"lint": "node scripts/lint.mjs",
"playwright": "playwright test --config ./playwright.config.ts",
"playwright-build": "NODE_ENV=production vite build --config ./examples/vite.config.ts",
"playwright-server": "vite preview --config ./examples/vite.config.ts --port 8787 --host",
"nuxt-pack": "cd packages/nuxt && pnpm prepack",
"nuxt-dev": "cd packages/nuxt && npx nuxi dev playground --host",
"nuxt-build": "cd packages/nuxt && pnpm build",
"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"
},
"size-limit": [
{
"path": "dist/packages/core/src/*.js",
"limit": "10 KB"
}
],
"packageManager": "[email protected]"
}