forked from sveltecodes/form-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "@svelte.codes/form-manager",
"svelte": "./dist/index.js",
"version": "0.7.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "svelte-kit sync && svelte-package",
"build:css": "postcss --dir ./public/styles/ --config ./postcss.config.cjs ./src/app.pcss --ext .css --verbose -w",
"build:w": "nodemon --watch src/**/* --exec \"npm run build\"",
"build:watch": "run-p build:w build:css",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"release": "svelte-package && npm version patch && cp package-release.json dist/package.json && cd dist && npm version patch && npm publish"
},
"devDependencies": {
"@sveltejs/kit": "^2.0.6",
"@sveltejs/package": "^2.2.4",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.10.5",
"autoprefixer": "^10.4.16",
"nodemon": "^3.0.2",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"postcss-load-config": "^5.0.2",
"rollup": "^4.9.1",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"tailwindcss": "^3.3.6",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./styles/app.pcss": "./public/styles/app.pcss"
},
"dependencies": {
"bits-ui": "^0.11.8",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.2.0"
}
}