-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 898 Bytes
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
{
"name": "node-text-file",
"version": "1.1.0",
"description": "Simple writable and readable remote text file for small projects",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node --experimental-strip-types src/index.ts",
"test": "node --experimental-strip-types node_modules/tape/bin/tape 'test/**/*.spec.ts' | tap-diff",
"watch": "nodemon --watch 'src/**/*' --watch 'test/**/*' -e ts,tsx -q -x 'npm test'"
},
"keywords": [],
"author": "Chris Maas https://www.cmaas.de/",
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.5.2",
"@types/tape": "^5.8.1",
"nodemon": "^3.1.10",
"tap-diff": "^0.1.1",
"tape": "^5.9.0",
"typescript": "^5.9.2"
},
"dependencies": {
"better-sqlite3": "^12.2.0"
}
}