-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
{
"name": "nanbox",
"version": "3.0.0",
"description": "Encode hidden data within NaN IEEE 754 floats",
"type": "module",
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"lint": "eslint",
"pretty": "prettier --write **/*.{js,json}",
"release": "np",
"test": "node --test **/__tests__/*.test.js",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage.lcov --test-reporter=spec --test-reporter-destination=stdout **/__tests__/*.test.js"
},
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"/dist",
"!/dist/**/__tests__/*"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/philihp/nanbox.git"
},
"keywords": [
"nan",
"hidden",
"payload"
],
"author": "Philihp Busby <philihp@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/philihp/nanbox/issues"
},
"homepage": "https://github.com/philihp/nanbox#readme",
"devDependencies": {
"@eslint/js": "9.14.0",
"@philihp/prettier-config": "1.0.0",
"esbuild": "0.24.0",
"eslint": "9.14.0",
"globals": "15.12.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18.0.0"
}
}