-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.66 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "shirokuma",
"version": "0.1.3",
"description": "TypeScript SDK to easily write p2panda applications",
"type": "module",
"main": "./lib/cjs/index.js",
"types": "./lib/esm/index.d.ts",
"exports": {
".": {
"types": "./lib/cjs/index.d.ts",
"require": "./lib/cjs/index.cjs",
"import": "./lib/esm/index.js"
},
"./slim": {
"types": "./lib/cjs-slim/index.d.ts",
"require": "./lib/node/index.cjs",
"import": "./lib/esm-slim/index.js"
},
"./bundle": {
"types": "./lib/cjs-bundle/index.d.ts",
"require": "./lib/cjs-bundle/index.cjs",
"import": "./lib/esm-bundle/index.js"
},
"./p2panda.wasm": "./lib/p2panda.wasm",
"./package.json": "./package.json"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-s clear rollup",
"clear": "rimraf ./lib",
"docs": "typedoc src/index.ts",
"lint": "eslint --ext .ts .",
"rollup": "rollup -c rollup.config.ts --configPlugin typescript",
"test": "cross-env NODE_ENV=development jest --coverage=$npm_config_coverage",
"test:watch": "nodemon --watch '../p2panda-rs/src/*' --watch './src/*' --exec 'npm test' --ext js,ts,json",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">= v18"
},
"files": [
"lib"
],
"contributors": [
"adz <[email protected]>",
"cafca <[email protected]>",
"sandreae <[email protected]>"
],
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/p2panda/shirokuma.git"
},
"bugs": {
"url": "https://github.com/p2panda/shirokuma/issues"
},
"homepage": "https://github.com/p2panda/shirokuma#readme",
"devDependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@tsconfig/node18": "^18.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^29.6.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.0",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"graphql-request": "^6.1.0",
"graphql-web-lite": "^16.6.0-4",
"p2panda-js": "^0.8.0"
}
}