-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
62
63
64
65
66
67
68
69
{
"name": "skymind-component-library",
"version": "1.0.0",
"description": "SCD Component Library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"docs": "api-documenter markdown --output-folder docs/ --input-folder temp/",
"build": "rm -rf temp/ && rollup -c && npm run docs",
"link": "npm link && rollup --watch -c ",
"test": "jest --detectOpenHandles --silent=false --verbose --colors --runInBand"
},
"typings": "./dist/index.d.ts",
"decentralandLibrary": {
"main": "./dist/index.js"
},
"publishConfig": {
"@nomadical:registry":"https://npm.pkg.github.com"
},
"keywords": [
"skymind",
"scd",
"component",
"skycell",
"skycell-ag",
"library"
],
"author": "SkyMind Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/SkyCell-AG/scd-library.git"
},
"files": [
"dist",
"!dist/types"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.25.17",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.13",
"decentraland-ecs": "latest",
"follow-redirects": "^1.15.9",
"jest": "^29.7.0",
"rollup": "^4.24.0",
"tough-cookie": "^5.0.0",
"ts-jest": "^29.2.5",
"braces": "^3.0.3",
"ws": "^8.18.0",
"@babel/traverse": "^7.25.7"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"json5": "^2.2.3"
},
"bugs": {
"url": "https://github.com/SkyCell-AG/scd-library/issues"
},
"homepage": "https://github.com/SkyCell-AG/scd-library#readme",
"directories": {
"doc": "docs",
"test": "test"
}
}