-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.58 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
{
"name": "@pallad/entity-ref",
"version": "2.5.0",
"description": "Create small references to entities",
"main": "dist/pallad-entity-ref.cjs.js",
"module": "dist/pallad-entity-ref.esm.js",
"exports": {
".": {
"module": "./dist/pallad-entity-ref.esm.js",
"default": "./dist/pallad-entity-ref.cjs.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"generate-barrels": "barrelsby -l replace -L --delete -d ./src",
"compile": "npm run generate-barrels && preconstruct build",
"prepublishOnly": "npm run compile",
"setup:dev": "preconstruct dev",
"setup:fix": "preconstruct fix"
},
"keywords": [
"entity",
"reference",
"entity reference",
"typescript"
],
"publishConfig": {
"access": "public"
},
"preconstruct": {
"exports": true,
"entrypoints": [
"./index.ts"
]
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pallad-ts/entity-ref.git"
},
"author": "Łukasz Kużyński <lukasz.kuzynski@gmail.com> (http://wookieb.pl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pallad-ts/entity-ref/issues"
},
"homepage": "https://github.com/pallad-ts/entity-ref#readme",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@pallad/scripts": "^4",
"@preconstruct/cli": "^2.8.11",
"barrelsby": "^2.8.1",
"conditional-type-checks": "^1.0.5"
},
"dependencies": {
"predicates": "^2",
"shallow-equal": "^3.1.0"
}
}