-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "@projectstorm/react-workspaces",
"version": "2.6.1",
"main": "./dist/main.js",
"typings": "./dist/@types/src/main",
"author": "dylanvorster",
"repository": {
"type": "git",
"url": "https://github.com/projectstorm/react-workspaces.git"
},
"keywords": [
"web",
"workspace",
"windows",
"panels",
"drag",
"layout",
"split",
"react",
"typescript",
"simple"
],
"scripts": {
"ncu": "ncu -u && pnpm recursive exec -- ncu -u",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"clean": "rm -rf packages/*/dist",
"build": "tsc --build && pnpm run -r build",
"build:prod": "NODE_ENV=production pnpm build",
"release": "pnpm build:prod && pnpm changeset publish",
"release:storybook": "tsc --build && cd demo && pnpm storybook:build && ./node_modules/.bin/storybook-to-ghpages --existing-output-dir .out"
},
"devDependencies": {
"babel-loader": "^10.0.0",
"source-map-loader": "^5.0.0",
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-env": "^7.29.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"terser-webpack-plugin": "^5.3.16",
"@changesets/cli": "^2.29.8",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}