-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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": "rsql-prisma",
"version": "0.0.1",
"description": "RSQL emitter to Prisma queries for Node.js and Browsers",
"keywords": [
"rsql",
"prisma",
"typescript"
],
"homepage": "https://github.com/tiwater/rsql-prisma#readme",
"bugs": {
"url": "https://github.com/tiwater/rsql-prisma/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiwater/rsql-prisma.git"
},
"license": "MIT",
"author": "Tiwater Team",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && npm run build:mjs && npm run build:cjs",
"build:cjs": "esbuild src/index.ts --bundle --minify --format=cjs --outfile=dist/index.cjs",
"build:mjs": "esbuild src/index.ts --bundle --minify --format=esm --outfile=dist/index.mjs",
"test": "mocha --config test/mocha.cjs test/**.spec.ts"
},
"dependencies": {
"@rsql/ast": "^1.3.2",
"@rsql/parser": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"esbuild": "^0.14.26",
"esbuild-register": "^3.3.2",
"mocha": "^10.0.0",
"typescript": "^4.6.2"
}
}