-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 880 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 880 Bytes
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
{
"name": "@cldn/components",
"version": "0.0.0-dev",
"description": "Base classes for web components",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**.js",
"dist/**.d.ts"
],
"scripts": {
"build": "tsc",
"docs": "typedoc src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudnode-pro/components"
},
"keywords": [
"web",
"components",
"typed"
],
"author": "Cloudnode",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/cloudnode-pro/components/issues"
},
"homepage": "https://github.com/cloudnode-pro/components#readme",
"devDependencies": {
"typedoc": "^0.28.0",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.6.3"
}
}