-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "airdcpp-create-extension",
"version": "1.2.1",
"description": "Starter project for AirDC++ extension development. This package doesn't provide any actual features for end users.",
"license": "MIT",
"author": {
"name": "maksis"
},
"keywords": [
"airdcpp",
"airdcpp-extensions",
"airdcpp-extensions-public",
"airdcpp-extensions-test"
],
"bugs": "https://github.com/airdcpp-web/airdcpp-create-extension/issues/",
"repository": {
"type": "git",
"url": "https://github.com/airdcpp-web/airdcpp-create-extension/"
},
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"clean": "rimraf dist",
"start": "node devtools/watch.js ../dist/main.js",
"prepublishOnly": "npm run build",
"webpack": "webpack"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.19.0",
"@babel/runtime": "^7.19.0",
"airdcpp-extension": "^1.5.1",
"airdcpp-extension-settings": "^1.2.1",
"babel-loader": "^9.1.2",
"core-js": "^3.25.1",
"cross-env": "^7.0.3",
"nodemon": "^2.0.19",
"rimraf": "^4.4.1",
"source-map-support": "^0.5.21",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"main": "dist/main.js",
"airdcpp": {
"apiVersion": 1,
"minApiFeatureLevel": 0,
"signalReady": false
}
}