-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 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
{
"name": "linki-lib0",
"version": "0.1.5",
"description": "A utility library inspired by the lib0 designed for projects using linki",
"keywords": [
"linki",
"lib0"
],
"type": "module",
"author": "Marek Pazik <contact@marekpazik.pl>",
"license": "mit",
"repository": {
"type": "git",
"url": "git+https://github.com/mpazik/linki-lib0.git"
},
"bugs": {
"url": "https://github.com/mpazik/linki-lib0/issues"
},
"homepage": "https://github.com/mpazik/linki-lib0#readme",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"types": "./index.d.ts",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/*.js",
"types": "./*.d.ts",
"require": "./dist/cjs/*.js"
}
},
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"clean-declaration-files": "find . -maxdepth 1 -name \"*.d.ts\" -type f -delete",
"copy-declaration-files": "cp dist/*.d.ts .",
"build": "yarn clean-declaration-files && tdl-build && yarn copy-declaration-files",
"prepack": "yarn build",
"lint": "tdl-lint",
"test": "tdl-test"
},
"devDependencies": {
"typescript-dev-loop": "^0.1.4"
},
"resolutions": {
"@jest/create-cache-key-function": "29.3.1"
},
"engines": {
"node": ">=12"
},
"eslintConfig": {
"root": true,
"extends": "./node_modules/typescript-dev-loop/config/eslint.json"
}
}