This repository was archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "manzana",
"version": "0.2.12",
"description": "Build forms on Svelte as easy as eating apple.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"check": "tsc --noEmit",
"coverage": "vitest run --coverage",
"dev": "rollup -c rollup.config.js --watch",
"test": "vitest",
"test:dev": "vitest watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. . && eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/EstebanBorai/manzana.git"
},
"keywords": [
"svelte",
"forms",
"utility"
],
"author": "Esteban Borai <estebanborai@gmail.com> (https://estebanborai.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/EstebanBorai/manzana/issues"
},
"homepage": "https://manzana.estebanborai.com",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@testing-library/svelte": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"c8": "^7.11.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rollup": "^2.69.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-typescript2": "^0.31.2",
"svelte-preprocess": "^4.10.4",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vitest": "^0.5.9",
"yup": "^0.32.11"
},
"peerDependencies": {
"svelte": "^3.46.4",
"yup": "0.x"
}
}