-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "airdcpp-extension",
"version": "1.5.1",
"description": "AirDC++ extension development modules for JavaScript",
"main": "dist/index.js",
"module": "dist-es/index.js",
"scripts": {
"build": "npm run build-commonjs && npm run build-es",
"build-commonjs": "rimraf dist && cross-env NODE_ENV=production tsc -d --outDir dist --module CommonJS",
"build-es": "rimraf dist-es && cross-env NODE_ENV=production tsc -d --outDir dist-es --module es2020",
"clean": "rimraf dist/* && rimraf dist-es/*",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airdcpp-web/airdcpp-extension-js"
},
"keywords": [
"airdcpp",
"airdcpp-extensions"
],
"dependencies": {
"airdcpp-apisocket": "^2.4.4",
"chalk": "^5.0.1",
"minimist": "^1.2.6",
"mkdirp": "^2.1.6",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/minimist": "^1.2.2",
"@types/mkdirp": "^2.0.0",
"@types/node": "^18.7.17",
"airdcpp-extension-settings": "^1.2.1",
"cross-env": "^7.0.3",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"rimraf": "^4.4.1",
"ts-jest": "^29.0.0",
"typescript": "^5.0.2",
"wait-for-expect": "^3.0.2"
},
"pre-commit": [
"test"
],
"type": "module",
"author": "maksis",
"license": "MIT",
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 0
}
}