-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 771 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "graphql-easy-mock",
"version": "1.0.0",
"author": "Midori<https://github.com/midori-profile>",
"type": "module",
"scripts": {
"watch": "rollup -c -w",
"prebuild": "rm -rf dist",
"build:script": "rollup -c",
"build:popup": "echo 'Building popup' && cd src/ui && pnpm install && pnpm run build && mv popup ../../dist/popup && rm -rf dist && rm -rf popup",
"build": "pnpm prebuild && concurrently \"pnpm build:popup\" \"pnpm build:script\""
},
"dependencies": {
"typescript": "^5.0.4"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/chrome": "^0.0.237",
"concurrently": "^8.0.1",
"rollup": "^3.23.0",
"rollup-plugin-copy": "^3.5.0"
}
}