-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) 路 1.69 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) 路 1.69 KB
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
{
"name": "puddysql",
"description": "",
"version": "1.0.0-beta",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"ethereum": "jasmindreasond.x",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"repository": "https://github.com/JasminDreasond/TinySQL.git",
"author": "Yasmin Seidel (JasminDreasond)",
"license": "GPL-3.0-only",
"dependencies": {
"@types/pg": "^8.11.14",
"@types/sqlite3": "^3.1.11",
"pg": "^8.14.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tiny-essentials": "^1.8.5"
},
"keywords": [],
"scripts": {
"test": "npm run test:mjs && npm run test:cjs && npm run test:js",
"test:js": "npx babel-node test/index.js",
"test:mjs": "node test/index.mjs",
"test:cjs": "node test/index.cjs",
"fix:prettier": "prettier --write ./src/* && prettier --write ./test/*",
"auto-build": "npm run build",
"build": "tsc -p tsconfig.json && rollup -c",
"build-clean": "npm run clean && npm run build",
"build-dist": "npm run build",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.14.1",
"babel-preset-es2015": "^6.24.1",
"prettier": "3.5.3",
"rollup": "^4.41.0",
"rollup-preserve-directives": "^1.1.3",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}