-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "@terrashell/functional-typescript",
"version": "2.11.0",
"main": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts",
"scripts": {
"dev": "tsc && node build",
"clean": "rimraf ./lib",
"build": "tsc && rollup -c -m",
"prepack": "pnpm build"
},
"author": "Terrashell SDK Team <[email protected]>",
"contributors": [
{
"name": "Rose Hall",
"email": "[email protected]"
}
],
"exports": {
".": {
"import": {
"types": "./lib/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib/cjs/**/*",
"lib/esm/**/*",
"lib/types/**/*",
"README.md",
"LICENSE",
"tsconfig.json"
],
"repository": "github:terra-shell/functional-typescript",
"license": "MIT",
"description": "The SDK for building software that interacts with Terrashell",
"packageManager": "[email protected]",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-sucrase": "^5.0.2",
"rimraf": "^6.0.1",
"rollup": "^4.24.0"
}
}