generated from maxwroc/typescript-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 980 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
32
33
34
{
"name": "vanilla-pattern-lock",
"version": "0.3.0",
"description": "Pattern lock lib written in vanilla JS",
"main": "./dist/vanilla-pattern-lock.es.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"release": "rollup --environment RELEASE -c",
"watch": "rollup --watch -c"
},
"repository": {
"type": "git",
"url": "https://github.com/maxwroc/vanilla-pattern-lock.git"
},
"keywords": [],
"author": "Max Chodorowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxwroc/vanilla-pattern-lock/issues"
},
"homepage": "https://github.com/maxwroc/vanilla-pattern-lock#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.29.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.0.2",
"typescript": "^4.0.3"
}
}