forked from codemix/ts-sql
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "sqlpture",
"version": "0.0.9",
"description": "SQL database engine implemented purely in TypeScript type definitions.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Shin Ando <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"ts",
"template literal types",
"template string types",
"SQL",
"PostgreSQL",
"Database",
"DB"
],
"homepage": "https://github.com/codemix/sqlpture#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andoshin11/sqlpture.git"
},
"bugs": {
"url": "https://github.com/andoshin11/sqlpture/issues"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test:unit": "tsd",
"test:type": "tsc --noEmit",
"format": "prettier src --write",
"prepare": "yarn run build"
},
"dependencies": {},
"devDependencies": {
"prettier": "^2.2.1",
"tsd": "^0.14.0",
"typescript": "4.1.3"
},
"peerDependencies": {
"typescript": "^4.1.3"
},
"tsd": {
"directory": "test"
}
}