-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.95 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
{
"type": "module",
"sideEffects": false,
"name": "kryptonian",
"types": "dist/index.d.ts",
"description": "Purity, hope, and the strength of Krypton in one package",
"version": "4.0.1",
"homepage": "https://github.com/aminnairi/kryptonian",
"license": "MIT",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/aminnairi/kryptonian/issues"
},
"author": {
"name": "Amin NAIRI",
"url": "https://github.com/aminnairi"
},
"repository": {
"type": "git",
"url": "https://github.com/aminnairi/kryptonian.git"
},
"workspaces": [
".",
"template/shared",
"template/client",
"template/server"
],
"keywords": [
"validation",
"functional",
"function",
"purity",
"pure",
"krypton",
"integrity",
"superman",
"reliability",
"quality",
"json",
"rpc",
"jsonrpc",
"json-rpc",
"client",
"server",
"client-server",
"server-client"
],
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"test": "vitest run --coverage",
"coverage": "coveralls < coverage/lcov.info",
"dev": "rollup --config rollup.config.ts --configPlugin typescript --environment NODE:ENV:development --watch",
"build": "rollup --config rollup.config.ts --configPlugin typescript --environment NODE_ENV:production"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.5",
"@types/node": "20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitest/coverage-v8": "^1.0.2",
"coveralls": "3.1.1",
"eslint": "8.55.0",
"eslint-plugin-react": "^7.33.2",
"happy-dom": "^12.10.3",
"rollup": "4.6.1",
"rollup-plugin-delete": "2.0.0",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vitest": "1.0.2"
}
}