-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "JC-ProjectExportAPI",
"version": "0.0.1",
"description": "Project export API",
"main": "dist/index.js",
"author": "dk949",
"license": "MIT",
"private": false,
"scripts": {
"cp": "node .github/cp.js",
"mkdir": "node .github/mkdir.js",
"build": "yarn tsc",
"release": "yarn build && yarn cp ./src/project.d.ts package/dist && yarn cp ./src/index.d.ts package/dist && yarn cp ./package.json package/",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JumpCutter/JC-ProjectExportAPI"
},
"keywords": [
"JumpCutter",
"Editor"
],
"bugs": {
"url": "https://github.com/JumpCutter/JC-ProjectExportAPI/issues"
},
"homepage": "https://github.com/JumpCutter/JC-ProjectExportAPI#readme",
"files": [
"dist/**/*"
],
"dependencies": {
"edl_composer": "^1.0.3"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"mocha": "^9.1.2",
"node-libxml": "^4.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.4"
}
}