-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 KB
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": "@jsxtools/rollup-plugin-cem",
"description": "A Rollup plugin for generating a Custom Elements Manifest file from the Rollup module graph.",
"version": "0.5.0",
"type": "module",
"exports": {
".": "./dist/cem-rollup-plugin.js",
"./api": "./dist/cem-api.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"clean:build": "rm -rf dist tsconfig.tsbuildinfo && tsc",
"clean:watch": "rm -rf dist tsconfig.tsbuildinfo && tsc --watch",
"watch": "tsc --watch"
},
"author": "Jonathan Neal <jonathantneal@hotmail.com> (https://jonneal.dev)",
"license": "MIT-0",
"repository": {
"type": "git",
"url": "git+https://github.com/jsxtools/rollup-utils.git",
"directory": "packages/rollup-plugin-cem"
},
"homepage": "https://github.com/jsxtools/rollup-utils/tree/main/packages/rollup-plugin-cem",
"dependencies": {
"@jsxtools/cem-analyzer": "^0.5.0",
"@jsxtools/rollup-plugin-utils": "^0.4.0"
},
"devDependencies": {
"@types/node": "24.10.9",
"rollup": "^4.59.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"rollup": "^4.59.0"
}
}