-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.13 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.13 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "tiny-types",
"version": "0.0.0-development",
"description": "A tiny library that brings Tiny Types to JavaScript and TypeScript",
"type": "module",
"main": "lib/index.js",
"module": "./esm/index.js",
"typings": "lib/index.d.ts",
"typesVersions": {
"*": {
"objects": ["lib/objects/index.d.ts"]
}
},
"exports": {
".": [
{
"types": "./lib/index.d.ts",
"import": "./esm/index.js",
"require": "./lib/index.js"
},
"./lib/index.js"
],
"./objects": [
{
"types": "./lib/objects/index.d.ts",
"import": "./esm/objects/index.js",
"require": "./lib/objects/index.js"
},
"./lib/objects/index.js"
],
"./lib/*": "./lib/*",
"./esm/*": "./esm/*",
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf docs lib esm reports",
"lint": "eslint --ext ts --config .eslintrc.yml .",
"lint:fix": "npm run lint -- --fix",
"test": "node --import tsx node_modules/vitest/vitest.mjs run",
"test:coverage": "node --import tsx node_modules/vitest/vitest.mjs run --coverage",
"compile": "npm run compile:clean && npm run compile:esm && npm run compile:cjs && npm run compile:cjs-package",
"compile:clean": "rimraf lib esm",
"compile:esm": "tsc --project tsconfig-esm.build.json",
"compile:cjs": "tsc --project tsconfig-cjs.build.json",
"compile:cjs-package": "node -e \"require('fs').writeFileSync('lib/package.json', '{ \\\"type\\\": \\\"commonjs\\\" }')\"",
"verify": "npm run clean && npm run lint && npm run test && npm run compile",
"doc": "esdoc",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jan-molak/tiny-types.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"design",
"patterns",
"value",
"objects",
"tiny",
"types",
"ddd",
"domain-driven",
"design"
],
"author": "Jan Molak <jan.molak@smartcodeltd.co.uk>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jan-molak/tiny-types/issues"
},
"homepage": "https://jan-molak.github.io/tiny-types/",
"engines": {
"node": "^20 || ^22 || ^24"
},
"devDependencies": {
"@types/node": "20.19.37",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "4.1.0",
"cheerio": "1.2.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"esdoc": "1.1.0",
"esdoc-importpath-plugin": "1.0.2",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"esdoc-typescript-plugin": "1.0.1",
"eslint": "8.57.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "4.4.1",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"tsx": "^4.19.2",
"typescript": "5.9.3",
"vitest": "4.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}