-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.56 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
{
"name": "fake-hr",
"version": "1.5.0",
"description": "HR data sets for mocking and testing",
"homepage": "https://github.com/seek-oss/fake-hr#readme",
"bugs": {
"url": "https://github.com/seek-oss/fake-hr/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/fake-hr.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"@seek/fake-hr/source": "./src/index.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.cts",
"files": [
"lib"
],
"scripts": {
"build": "skuba build-package",
"format": "skuba format",
"lint": "skuba lint",
"release": "pnpm run --silent build && changeset publish",
"stage": "changeset version && pnpm skuba-changelog-inject && pnpm format",
"start": "skuba start src/readme.ts",
"test": "skuba test",
"test:ci": "skuba test --coverage"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@skuba-lib/changesets-changelog": "1.0.1",
"skuba": "16.2.0"
},
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=22.14.0"
},
"publishConfig": {
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
}
},
"skuba": {
"entryPoint": null,
"template": "oss-npm-package",
"type": "package",
"version": "16.2.0"
}
}