-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 972 Bytes
/
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
{
"name": "totjs",
"version": "2.0.1",
"description": "Markup-like Database without Indexing",
"main": "dist/index.js",
"type": "module",
"bin": {
"totjs": "dist/index.js"
},
"scripts": {
"pack": "node pack/index.js",
"webpack": "npx webpack --config webpack.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opdev1004/totjs.git"
},
"keywords": [
"file format",
"data store",
"data management",
"data manager",
"database",
"IO system",
"Markup"
],
"author": "Victor Chanil Park",
"license": "MIT",
"bugs": {
"url": "https://github.com/opdev1004/totjs/issues"
},
"homepage": "https://github.com/opdev1004/totjs#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"jest": "^29.7.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"chalk": "^5.3.0"
}
}