-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.8 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
{
"name": "@softstack/typed-stringify",
"version": "3.0.0",
"description": "@softstack/typed-stringify is a library designed to serialize and deserialize JavaScript objects while preserving their original types.",
"author": "Softstack GmbH <[email protected]> (https://softstack.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chainsulting/typed-stringify.git"
},
"homepage": "https://github.com/chainsulting/typed-stringify#readme",
"keywords": [
"json",
"serialize",
"serializer",
"stringify"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"prettier": "prettier --write \"./**/*.js\" \"./**/*.json\" \"./**/*.mjs\" \"./**/*.ts\"",
"lint": "eslint ./src",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:clean": "rm -rf ./dist",
"build": "npm run build:clean && npm run compile && rm ./dist/**/*.tsbuildinfo",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"bignumber.js": "^9.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.1"
}
}