-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.65 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.65 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
41
42
43
44
45
{
"name": "componentsjs-example",
"version": "1.0.0",
"description": "The Usage Example of Components.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@hsinpeng/componentsjs-example",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@hsinpeng/componentsjs-example/^1.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@hsinpeng/componentsjs-example/^1.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@hsinpeng/componentsjs-example/^1.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/@hsinpeng/componentsjs-example/^1.0.0/dist/": "dist/"
},
"scripts": {
"build": "npm run build:ts && npm run build:components",
"build:ts": "tsc",
"build:components": "componentsjs-generator -c dist/components",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsinpeng/componentsjs-example.git"
},
"keywords": [
"Components.js",
"TypeScript"
],
"author": "Sheldon Hsin-Peng Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/hsinpeng/componentsjs-example/issues"
},
"homepage": "https://github.com/hsinpeng/componentsjs-example#readme",
"dependencies": {
"componentsjs": "^5.0.1",
"typescript": "^4.6.2"
},
"devDependencies": {
"componentsjs-generator": "^3.0.2"
}
}