-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "@zig-zag/chains",
"version": "0.2.1",
"description": "A reference list for all popular Dotsama relay/parachains.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zigzag-js/chains.git"
},
"bugs": {
"url": "https://github.com/zigzag-js/chains/issues"
},
"homepage": "https://github.com/zigzag-js/chains#readme",
"author": "https://github.com/itsyogesh",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build:clean": "rm -rf dist",
"build:clean:all": "npm run build:clean && npm run build:types:clean",
"build:types:clean": "rm -rf types",
"build:types:watch": "tsc --emitDeclarationOnly --watch",
"build:watch": "rollup -c -w"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@types/node": "^18.15.12",
"esbuild": "^0.17.17",
"rollup": "^3.20.6",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.0.4"
}
}