-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "@openmarketplaceengine/ome-proto-ts",
"publishConfig": {
"access": "public"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/openmarketplaceengine/ome-proto-ts.git"
},
"version": "0.0.0-development",
"files": [
"dist"
],
"description": "TypeScript code compiled from protobufs.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && tsc && rollup -c",
"rollup": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release --branches main"
},
"contributors": [
{
"name": "Kevin Chen",
"email": "[email protected]",
"url": "https://github.com/kevinmichaelchen"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/openmarketplaceengine/ome-proto-ts/issues"
},
"homepage": "https://github.com/openmarketplaceengine/ome-proto-ts#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@tsconfig/node16-strictest-esm": "^1.0.0",
"deepmerge": "^4.2.2",
"fast-glob": "^3.2.11",
"long": "^5.2.0",
"protobufjs": "^6.11.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^19.0.2",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"long": "^5.2.0",
"protobufjs": "^6.11.2"
}
}