-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 954 Bytes
/
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
{
"name": "your-workflow-name",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "rimraf dist && rollup -c --bundleConfigAsCjs",
"dev": "rollup -c -w --bundleConfigAsCjs",
"release:test": "pnpm build && ./build.sh",
"release": "bumpp package.json --commit --push --tag ",
"test": "vitest",
"lint:fix": "eslint . --fix",
"dev:unbuild": "unbuild -stub",
"build:unbuild": "unbuild"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@jxa/global-type": "^1.3.6",
"@types/node": "^18.11.10",
"bumpp": "^8.2.1",
"eslint": "^8.29.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vitest": "^0.25.3"
},
"peerDependencies": {
"@jxa/global-type": "^1.3.6"
},
"dependencies": {
"rimraf": "^5.0.1",
"rollup": "^3.23.0",
"rollup-plugin-typescript2": "^0.34.1"
}
}