-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@protobuf-ts/plugin-framework",
"version": "2.2.0-alpha.0",
"description": "framework to create protoc plugins",
"license": "(Apache-2.0 AND BSD-3-Clause)",
"author": "Timo Stamm <ts@timostamm.com>",
"homepage": "https://github.com/timostamm/protobuf-ts",
"keywords": [
"Protocol Buffers",
"protobuf",
"TypeScript",
"protoc"
],
"repository": {
"type": "git",
"url": "https://github.com/timostamm/protobuf-ts.git",
"directory": "packages/plugin-framework"
},
"publishConfig": {
"access": "public"
},
"main": "./build/commonjs/index.js",
"module": "./build/es2015/index.js",
"typings": "./build/types/index.d.ts",
"sideEffects": false,
"devDependencies": {
"@types/jasmine": "^3.5.10",
"@types/node": "^14.0.13",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslib": ">=1.6.1"
},
"dependencies": {
"@protobuf-ts/runtime": "^2.2.0-alpha.0",
"typescript": "^3.9"
},
"gitHead": "2742e3995c14cab17e74be919b59b878c8383ad9"
}