-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.46 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
{
"name": "oopxml-parser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"pnpm run build:watch\" \"pnpm run live-server\"",
"live-server": "live-server ./ --open=./index.html --port=8080 --watch=./dist/ooxml-parser.umd.js,./index.html",
"dev:node": "pnpm run build && concurrently \"pnpm run build:watch\" \"pnpm run run:watch\"",
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"run:watch": "nodemon --watch dist/ooxml-parser.cjs.js,assets/simple.pptx --exec node ./test/index.cjs",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.20",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"live-server": "^1.2.2",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/jsdom": "^21.1.6",
"jsdom": "^24.0.0",
"jszip": "^3.10.1",
"tinycolor2": "^1.6.0"
},
"peerDependencies": {}
}