forked from solidjs/solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "solid-js",
"description": "A declarative JavaScript library for building user interfaces.",
"version": "1.0.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid"
},
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"test": "turbo run test test-types",
"coverage": "turbo run coverage",
"build": "turbo run build",
"types": "turbo run types",
"publish": "pnpm run build && pnpm run types && pnpm run release:only",
"bump": "changeset add",
"release:only": "changeset publish",
"format": "prettier --write --cache \"**/*.[tj]s?(x)\""
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.25.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^18.11.19",
"@vitest/coverage-c8": "^0.29.7",
"babel-plugin-jsx-dom-expressions": "^0.38.1",
"coveralls": "^3.1.1",
"csstype": "^3.1.0",
"dom-expressions": "0.38.4",
"hyper-dom-expressions": "0.38.4",
"jsdom": "^21.1.1",
"lit-dom-expressions": "0.38.4",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup": "^3.7.5",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"seroval": "^1.1.0",
"simple-git-hooks": "^2.8.1",
"symlink-dir": "^5.0.1",
"tsconfig-replace-paths": "^0.0.11",
"turbo": "^1.3.1",
"typescript": "^5.5.2",
"vite-plugin-solid": "^2.6.1",
"vitest": "^0.29.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm run format"
},
"pnpm": {
"overrides": {
"babel-preset-solid": "workspace:*"
}
},
"engines": {
"pnpm": ">=8.6.1"
},
"packageManager": "[email protected]"
}