-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "named-context",
"private": true,
"author": "Maxim Molochkov <klaseca@gmail.com> (https://github.com/klaseca)",
"license": "MIT",
"homepage": "https://github.com/klaseca/named-context",
"repository": {
"type": "git",
"url": "https://github.com/klaseca/named-context.git"
},
"bugs": {
"url": "https://github.com/klaseca/named-context/issues"
},
"type": "module",
"scripts": {
"build": "npm run build -ws",
"build:react": "npm run build -w packages/react",
"build:solid": "npm run build -w packages/solid",
"test": "npm run test -ws",
"test:react": "npm run test -w packages/react",
"test:solid": "npm run test -w packages/solid",
"generate-readmes": "node ./scripts/generate-readmes.js",
"format": "prettier -w ."
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"eta": "^2.0.1",
"happy-dom": "^8.9.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.4",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}