-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "cifru",
"version": "0.4.0-alpha.0",
"description": "Cypher queries with no strings attached 🌊",
"keywords": [
"orm",
"neo4j",
"cypher",
"query",
"query builder",
"query language",
"redis-graph",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"repository": "https://github.com/Gamote/cifru.git",
"license": "MIT",
"scripts": {
"prepack": "yarn build",
"build": "rm -rf dist && rollup -c",
"dev": "tsx watch src/dev.ts ",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-c8": "^0.31.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "npm:eslint-plugin-i",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.1",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-terser": "^7.0.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
}
}