36 lines
1.2 KiB
JSON
36 lines
1.2 KiB
JSON
{
|
|
"name": "lightcordapi",
|
|
"version": "1.0.0",
|
|
"description": "Lightcord's scripting API",
|
|
"main": "js/main.js",
|
|
"scripts": {
|
|
"build": "webpack --progress --colors",
|
|
"watch": "webpack --progress --colors --watch",
|
|
"build-prod": "webpack --progress --colors --mode production -o js/main.min.js --devtool none",
|
|
"watch-prod": "webpack --progress --colors --watch --mode production -o js/main.min.js --devtool none",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"docs": "typedoc --plugin ./node_modules/typedoc-plugin-markdown --out ../../LightcordApiDocs ./src"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.3.4",
|
|
"@babel/preset-env": "^7.3.4",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@babel/register": "^7.0.0",
|
|
"@types/bandagedbd__bdapi": "^0.2.2",
|
|
"@types/react": "^16.9.36",
|
|
"@types/react-dom": "^16.9.8",
|
|
"@types/uuid": "^8.0.0",
|
|
"babel-loader": "^8.0.6",
|
|
"terser-webpack-plugin": "^3.0.6",
|
|
"ts-loader": "^7.0.5",
|
|
"typedoc": "^0.17.8",
|
|
"typescript": "^3.9.5",
|
|
"uuid": "^8.1.0",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.12"
|
|
},
|
|
"types": "./types/index.ts"
|
|
}
|