-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.84 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@smithjke/2p-core",
"version": "1.2.0",
"description": "",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"require": "./dist/index.js"
},
"./api": {
"types": "./dist/api/index.d.ts",
"node": "./dist/api/index.js",
"require": "./dist/api/index.js"
},
"./crud": {
"types": "./dist/crud/index.d.ts",
"node": "./dist/crud/index.js",
"require": "./dist/crud/index.js"
},
"./di": {
"types": "./dist/di/index.d.ts",
"node": "./dist/di/index.js",
"require": "./dist/di/index.js"
},
"./examples": {
"types": "./dist/examples/index.d.ts",
"node": "./dist/examples/index.js",
"require": "./dist/examples/index.js"
},
"./json-rpc": {
"types": "./dist/json-rpc/index.d.ts",
"node": "./dist/json-rpc/index.js",
"require": "./dist/json-rpc/index.js"
}
},
"files": [
"dist",
"dist/**/!(*.tsbuildinfo)",
"api",
"crud",
"di",
"examples",
"json-rpc"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"up:major": "yarn version --major && git push && git push --tags",
"up:minor": "yarn version --minor && git push && git push --tags",
"up:patch": "yarn version --patch && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smithjke/2p-core.git"
},
"author": "smithjke",
"license": "MIT",
"bugs": {
"url": "https://github.com/smithjke/2p-core/issues"
},
"homepage": "https://github.com/smithjke/2p-core#readme",
"devDependencies": {
"typescript": "^4.8.3"
},
"dependencies": {
"@sinclair/typebox": "^0.24.44",
"axios": "^0.27.2"
}
}