-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.29 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.29 KB
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
{
"name": "svstate",
"version": "1.5.3",
"description": "Supercharged $state() for Svelte 5: deep reactive proxy with validation, cross-field rules, computed & side-effects",
"author": "BCsabaEngine",
"license": "ISC",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BCsabaEngine/svstate.git"
},
"bugs": {
"url": "https://github.com/BCsabaEngine/svstate/issues"
},
"homepage": "https://github.com/BCsabaEngine/svstate",
"scripts": {
"demo": "cd demo && ./node_modules/.bin/vite dev --host --open",
"demo:build": "cd demo && ./node_modules/.bin/vite build",
"test": "vitest run --pass-with-no-tests",
"test:coverage": "vitest run --coverage",
"clean": "tsc --build --clean",
"build": "tsc --build --clean && tsc --build --force",
"format:check": "prettier --check .",
"format:fix": "prettier --write . | grep -v 'unchanged' | sed G",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"fix": "node --run format:fix && node --run lint:fix && node --run format:fix",
"all": "node --run fix && node --run build && node --run test && node --run demo:build",
"npm:reinstall": "rm -rf ./node_modules && rm -f ./package-lock.json && npm i && npm i"
},
"keywords": [
"svelte",
"svelte5",
"state",
"validation",
"runes",
"proxy"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^64.0.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"svelte": "^5.55.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"peerDependencies": {
"svelte": "^5.0.0"
}
}