-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "@whizzes/svelte-forms",
"version": "0.3.5",
"description": "Svelte form handlers",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"check": "tsc --noEmit",
"coverage": "vitest --config ./vitest.config.ts run --coverage",
"dev": "rollup -c rollup.config.js --watch",
"test": "vitest --config ./vitest.config.ts run",
"test:dev": "vitest --config ./vitest.config.ts watch",
"lint": "rome format ./src && rome check ./src",
"format": "rome format --write ./src && rome check --apply ./src",
"format:unsafe": "rome format --write ./src && rome check --apply-unsafe ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whizzes/svelte-forms.git"
},
"keywords": [
"svelte",
"forms",
"utility"
],
"author": "Esteban Borai <[email protected]> (https://estebanborai.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/whizzes/svelte-forms/issues"
},
"homepage": "https://github.com/whizzes/svelte-forms#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/svelte": "^4.0.0",
"c8": "^9.1.0",
"jsdom": "^24.0.0",
"rome": "12.1.3",
"rollup": "^4.1.4",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-typescript2": "^0.35.0",
"svelte": "^4.2.7",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.4.1",
"typescript": "^5.1.3",
"vitest": "^2.0.2",
"yup": "^1.1.1"
},
"peerDependencies": {
"svelte": "^4.x",
"yup": "1.x"
}
}