-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "@formkit/theme-starter",
"version": "1.4.2",
"author": "",
"license": "MIT",
"main": "dist/theme.js",
"module": "dist/theme.mjs",
"types": "dist/theme.d.ts",
"exports": {
".": {
"types": "./dist/theme.d.ts",
"import": "./dist/theme.mjs",
"require": "./dist/theme.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "tsup",
"build-web": "vite build",
"preview": "vite preview",
"release": "pnpm build && npx publint && npx bumpp && pnpm publish",
"test": "vitest",
"lint": "eslint"
},
"files": [
"dist"
],
"dependencies": {
"@formkit/theme-creator": "latest"
},
"devDependencies": {
"@formkit/addons": "latest",
"@formkit/barcode": "latest",
"@formkit/icons": "latest",
"@formkit/pro": "next",
"@formkit/theme-editor": "latest",
"@formkit/vue": "latest",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-vue": "^4.6.2",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"tailwindcss": "^3.4.1",
"tsup": "^7.2.0",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vitest": "^0.34.6",
"vue": "^3.4.15",
"vue-tsc": "^1.8.27"
}
}