-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "vsdx-js",
"version": "1.2.0",
"description": "typescript library to parse a Visio (.vsdx) file into a javascript object",
"keywords": [
"visio"
],
"homepage": "https://github.com/jgreywolf/vsdx-js",
"bugs": {
"url": "https://github.com/jgreywolf/vsdx-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgreywolf/vsdx-js.git"
},
"license": "MIT",
"author": "Justin Greywolf",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:tsc": "tsc",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "node test-npm-build.js",
"test:types": "node test-npm-build-ts.js",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@types/adm-zip": "^0.5.7",
"@types/xml2js": "^0.4.14",
"rimraf": "^6.0.1",
"rollup": "^4.52.4",
"rollup-plugin-dts": "^6.2.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"dependencies": {
"adm-zip": "^0.5.16",
"vitest": "^3.1.2",
"xml2js": "^0.6.2"
}
}