-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.62 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.62 KB
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
87
88
89
90
91
92
{
"name": "@epilot/pricing",
"version": "5.6.1",
"description": "Pricing Library",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/epilot-dev/pricing.git"
},
"homepage": "https://github.com/epilot-dev/pricing/README.md",
"keywords": [
"pricing"
],
"packageManager": "pnpm@9.15.4",
"type": "module",
"scripts": {
"start": "nodemon --watch src --ext ts --exec 'node esbuild.config.js'",
"test": "vitest run --coverage",
"test:watch": "vitest --coverage",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"gen-docs": "rm -rf docs && typedoc --plugin typedoc-plugin-markdown --out docs src && echo '{ \"label\": \"Pricing Library\", \"position\": 0 }' > docs/_category_.json",
"clean": "rm -rf dist",
"bundle-definition": "node esbuild.config.js",
"build": "pnpm run clean && tsc && pnpm run bundle-definition",
"prepare": "pnpm run build",
"lint": "eslint src --ext js,ts,tsx --cache --color",
"lint:fix": "eslint src --ext js,ts,tsx --cache --color --fix",
"prepublishOnly": "pnpm run build",
"prettify": "prettier --write ./src",
"check-circular-dependencies": "npx madge src/index.ts -c",
"check-unused-exports": "npx knip",
"release": "changeset version",
"release:publish": "changeset publish"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"semi": true
},
"files": [
"dist/**/*",
"!*.map",
"!*.test.*",
"!**/*.test.*",
"!node_modules",
"!src",
"!*.config.js"
],
"author": "epilot GmbH",
"license": "UNLICENSED",
"dependencies": {
"dinero.js": "^1.9.1"
},
"peerDependencies": {
"@epilot/pricing-client": "^3.51.0",
"i18next": "^25.1.2"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@epilot/eslint-config": "^3.0.5",
"@epilot/pricing-client": "^3.53.5",
"@types/dinero.js": "^1.9.4",
"@vitest/coverage-v8": "^1.6.1",
"concurrently": "^9.1.2",
"esbuild": "^0.25.4",
"eslint": "^9.26.0",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"i18next": "^25.1.2",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typedoc": "^0.28.4",
"typedoc-plugin-markdown": "^4.6.3",
"typescript": "^5.7.3",
"vitest": "^1.6.1"
}
}