-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.44 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": "scope-funs",
"type": "module",
"version": "1.0.0",
"description": "Porting the scope functions from the Kotlin standard library",
"author": "Maxim Molochkov <klaseca@gmail.com> (https://github.com/klaseca)",
"keywords": [
"kotlin",
"scope",
"scope functions",
"let",
"also",
"takeIf",
"takeUnless"
],
"license": "MIT",
"homepage": "https://github.com/klaseca/scope-funs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/klaseca/scope-funs.git"
},
"bugs": {
"url": "https://github.com/klaseca/scope-funs/issues"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.14"
},
"packageManager": {
"name": "npm",
"version": ">=11"
}
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prerelease": "npm run test && npm run build",
"release": "bumpp && npm publish"
},
"devDependencies": {
"bumpp": "^11.1.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "4.1.5"
}
}