-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "@gxxc/solid-forms-repo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Solid.js forms",
"repository": {
"type": "git",
"url": "https://github.com/gxxcastillo/solid-forms"
},
"scripts": {
"clean": "pnpm clean:modules && pnpm clean:dist",
"clean:modules": "find . -name 'node_modules' -print -type d -prune -exec rm -rf '{}' + ",
"clean:dist": "find . -name 'dist' -print -type d -prune -exec rm -rf '{}' + ",
"lint": "pnpm moon :lint",
"types": "pnpm moon :types",
"test": "pnpm moon :test",
"format": "pnpm moon :format",
"bump": "pnpm changeset version",
"publish": "tsx ./scripts/publish.ts"
},
"keywords": [
"solid-js",
"forms"
],
"author": "gxxcastillo",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@moonrepo/cli": "^1.27.6",
"@stylistic/eslint-plugin": "^2.6.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-moon": "^3.1.2",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "5.4.2"
},
"publishConfig": {
"directory": "./packages/solid-forms"
},
"packageManager": "[email protected]",
"engines": {
"node": "20.10.0"
}
}