-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 862 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 862 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
28
29
30
31
32
33
34
35
36
{
"name": "@antmind/encoding",
"version": "0.1.0",
"description": "Lightweight data encoding utilities for Node.js and browsers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc mocha",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghosind/node-encoding.git"
},
"keywords": [
"encoding"
],
"author": "Chen Su <ghosind@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghosind/node-encoding/issues"
},
"homepage": "https://github.com/ghosind/node-encoding#readme",
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
},
"files": [
"dist"
]
}