-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.54 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
{
"name": "mute8-dev",
"description": "Do not publish | package.json for local development ony",
"private": "true",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "npm run test:watch ",
"test": "npx jest",
"lint": "tsc --watch",
"test:watch": "npx jest --watchAll --maxWorkers=8",
"build": "npm run build:mute8 && concurrently -n plugins,react,solid,angular,preact,vue,devtools 'npm run build:plugins' 'npm run build:react' 'npm run build:angular' 'npm run build:solid' 'npm run build:preact' 'npm run build:vue' 'npm run devtools' ",
"build:mute8": "cd ./packages/mute8 && npx tsup",
"build:react": "cd ./packages/mute8-react && npx tsup",
"build:plugins": "cd ./packages/mute8-plugins && npx tsup",
"build:solid": "cd ./packages/mute8-solid && npx tsup",
"build:angular": "cd ./packages/mute8-angular && npx tsup",
"build:preact": "cd ./packages/mute8-preact && npx tsup",
"build:vue": "cd ./packages/mute8-vue && npx tsup",
"publish": "npm run build && npm run publish:npm",
"publish:npm": "cd ./packages && npm publish ./mute8 && npm publish ./mute8-react && npm publish ./mute8-plugins",
"publish:npm:test": "cd ./packages && npm publish ./mute8 --dry-run && npm publish ./mute8-react --dry-run && npm publish ./mute8-plugins --dry-run",
"devtools": "cd devtools-client && npx tsup && rm ../docs/devtools/v1.mjs && mv dist/v1.mjs ../docs/devtools/v1.mjs",
"devtools:watch": "cd devtools-client && concurrently -n build,host 'npx tsup --watch' 'npx serve dist --cors -p 4040' ",
"docs": "vite preview --outDir docs --base /mute8/ --port 4030"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Paweł Jastrzębski",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"solid-js": "^1.9.3",
"@angular/core": "^17.1.0",
"preact": "^10.19.3",
"vue": "^3.4.15"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-test-renderer": "^18.0.7",
"axios": "^1.6.7",
"babel-jest": "^29.7.0",
"babel-preset-solid": "^1.8.12",
"concurrently": "^8.2.2",
"cors-window": "^0.0.0-alpha.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"serve": "^14.2.1",
"solid-jest": "^0.2.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}