-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "@ttab/elephant-api",
"private": false,
"license": "MIT",
"version": "0.17.7-1",
"type": "module",
"exports": {
"./repository": {
"types": "./dist/repository/index.d.ts",
"import": "./dist/repository/index.js",
"require": "./dist/repository/index.cjs"
},
"./newsdoc": {
"types": "./dist/newsdoc/newsdoc.d.ts",
"import": "./dist/newsdoc/newsdoc.js",
"require": "./dist/newsdoc/newsdoc.cjs"
},
"./index": {
"types": "./dist/index/index.d.ts",
"import": "./dist/index/index.js",
"require": "./dist/index/index.cjs"
},
"./spell": {
"types": "./dist/spell/index.d.ts",
"import": "./dist/spell/index.js",
"require": "./dist/spell/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/ttab"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttab/elephant-api-npm.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:repository": "tsup ./src/repository/index.ts --format cjs,esm --dts --outDir ./dist/repository",
"build:newsdoc": "tsup ./src/newsdoc/newsdoc.ts --format cjs,esm --dts --outDir ./dist/newsdoc",
"build:index": "tsup ./src/index/index.ts --format cjs,esm --dts --outDir ./dist/index",
"build:spell": "tsup ./src/spell/index.ts --format cjs,esm --dts --outDir ./dist/spell",
"build": "npm run build:repository && npm run build:newsdoc && npm run build:index && npm run build:spell",
"update": "bash .github/workflows/update.sh",
"prepublish": "npm run build"
},
"author": "",
"description": "",
"devDependencies": {
"@protobuf-ts/plugin": "^2.9.4",
"tsup": "^8.3.5"
},
"files": [
"dist"
],
"dependencies": {
"@protobuf-ts/runtime": "^2.9.4",
"@protobuf-ts/runtime-rpc": "^2.9.4"
}
}