-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 923 Bytes
/
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
{
"name": "typescript-project-boilerplate",
"version": "0.1.0",
"description": "Typescript project boilerplate",
"main": "dist/typescript-project-boilerplate.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"postbuild": "node build/postbuild.js",
"release": "rollup --environment RELEASE -c"
},
"repository": {
"type": "git",
"url": "https://github.com/maxwroc/typescript-project-boilerplate.git"
},
"keywords": [],
"author": "Max Chodorowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxwroc/typescript-project-boilerplate/issues"
},
"homepage": "https://github.com/maxwroc/typescript-project-boilerplate#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"rollup": "^2.29.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.2",
"typescript": "^4.0.3"
}
}