-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.37 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
{
"name": "replace_me_with_name",
"version": "0.0.1",
"scripts": {
"build": "pnpm clean && ncc build src/index.ts -o dist && babel dist --out-dir dist && cp -r images dist && cp -r plugin.json dist",
"package": "pnpm build && cd dist && zip -r ../replace_me_with_name.wox *.js *.json images",
"dev": "nodemon --watch src --watch images --watch plugin.json --ext json,ts,js,mjs,png --exec pnpm run build",
"clean": "node -e \"var { rmdirSync, existsSync } = require('fs'), path = require('path'); ['./dist'].forEach(fPath => {if (existsSync(path.join(__dirname, fPath))) rmdirSync(path.join(__dirname, fPath), { recursive: true })}); process.exit(0);\"",
"clean:all": "pnpm run clean && (rm -r ./node_modules || true)",
"reinstall": "pnpm run clean:all && pnpm install"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@types/jest": "^29.5.12",
"@babel/preset-env": "^7.24.7",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vercel/ncc": "^0.38.1",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^9.6.0",
"eslint-config-prettier": "9.1.0",
"jest": "^29.7.0",
"prettier": "3.3.2",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
},
"dependencies": {
"@wox-launcher/wox-plugin": "^0.0.73"
}
}