-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "formons",
"version": "0.2.2",
"license": "MIT",
"author": "domutala",
"type": "module",
"repository": "https://github.com/domutala/formons",
"homepage": "https://github.com/domutala/formons#readme",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.umd.js",
"types": "dist/bundle.d.ts",
"keywords": [
"formons",
"form",
"generator"
],
"scripts": {
"build": "tsc && rollup -c --bundleConfigAsCjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "jest --config"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.36",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@unocss/preset-icons": "^0.61.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.2.2",
"unocss": "^0.61.3",
"unplugin-vue-components": "^0.27.2",
"vitepress": "^1.3.0"
}
}