-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "@philip21/idom",
"version": "1.5.3",
"description": "provides a concise and intuitive dom manipulation API",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"keywords": [
"dom",
"dom handling",
"concise",
"intuitive"
],
"author": {
"name": "devphilip21",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/devphilip21/philip21.js.git",
"directory": "packages/idom"
},
"bugs": {
"url": "https://github.com/devphilip21/philip21.js/issues"
},
"homepage": "https://github.com/devphilip21/philip21.js/tree/main/packages/idom#readme",
"scripts": {
"dev": "example=index rollup -w -c rollup.config.dev.mjs",
"build": "rollup -c rollup.config.prod.mjs && cp src/index.d.ts dist/index.d.ts",
"prepublish": "npm run build"
},
"dependencies": {
"@philip21/eventbus": "1.1.5"
},
"devDependencies": {
"@philip21/config": "1.0.0",
"rollup": "^4.18.0"
}
}