-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
57
58
59
60
61
{
"name": "__my_module_name__",
"version": "0.1.0",
"description": "",
"license": "MIT",
"type": "module",
"unpkg": "dist/__my_module_name__.min.js",
"jsdelivr": "dist/__my_module_name__.min.js",
"main": "dist/__my_module_name__.mjs",
"module": "dist/__my_module_name__.mjs",
"types": "dist/__my_module_name__.d.ts",
"exports": {
"umd": "./dist/__my_module_name__.min.js",
"default": "./dist/__my_module_name__.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/__my_module_name__.git"
},
"homepage": "https://github.com/vasturiano/__my_module_name__",
"keywords": [
"",
""
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/__my_module_name__/issues"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"dependencies": {
"accessor-fn": "^1.4",
"kapsule": "^1.14"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"postcss": "^8.4.21",
"rimraf": "^4.1.2",
"rollup": "^3.14.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12"
}
}