-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@haaxor1689/nil",
"version": "0.1.6",
"description": "TypeScript-first binary data parsing library with static type inference",
"author": "Maroš Beťko <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Haaxor1689/nil"
},
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"./package.json": "./package.json",
"./locales/*": "./lib/locales/*"
},
"files": [
"/lib",
"/index.d.ts"
],
"scripts": {
"clean": "rm -rf lib/*",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:esm": "rollup --config rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"build:test": "tsc -p tsconfig.test.json",
"rollup": "rollup --config rollup.config.js",
"test:watch": "jest --watch",
"test": "jest --coverage",
"prepublishOnly": "npm run test && npm run build",
"play": "nodemon -e ts -w . -x tsx playground.ts"
},
"devDependencies": {
"@haaxor1689/eslint-config": "^3.0.0",
"@haaxor1689/prettier-config": "^3.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^29.5.10",
"@types/lodash-es": "^4.17.12",
"@types/node": "^14.18.63",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.54.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"lodash-es": "^4.17.21",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"rollup": "^2.79.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tsx": "^3.14.0",
"typescript": "^5.3.2"
},
"eslintConfig": {
"extends": "@haaxor1689/eslint-config",
"parserOptions": {
"project": [
"./tsconfig.json",
"./tsconfig.base.json",
"./tsconfig.cjs.json",
"./tsconfig.esm.json",
"./tsconfig.test.json",
"./tsconfig.types.json"
]
}
},
"prettier": "@haaxor1689/prettier-config",
"publishConfig": {
"access": "public"
}
}