-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.5 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
{
"name": "@cldmv/wisp",
"version": "1.0.3",
"description": "Version-agnostic JSON importing for Node.js with fallback handling and caller path resolution.",
"type": "module",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs"
}
},
"scripts": {
"test": "mocha --recursive \"test/**/*.mjs\"",
"test:watch": "mocha --watch \"test/**/*.mjs\"",
"lint": "eslint src/",
"build:types": "tsc",
"test:types": "tsc --noEmit",
"build:ci": "npm run test && npm run build:types && npm run test:types"
},
"keywords": [
"json",
"import",
"nodejs",
"version-agnostic",
"fallback",
"loader",
"esm",
"cjs",
"wisp",
"api"
],
"author": {
"name": "Shinrai",
"company": "CLDMV",
"email": "git+npm@cldmv.net",
"url": "https://cldmv.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CLDMV/wisp.git"
},
"contributors": [
{
"name": "CLDMV",
"url": "https://github.com/CLDMV"
}
],
"bugs": {
"url": "https://github.com/CLDMV/wisp/issues"
},
"homepage": "https://github.com/CLDMV/wisp#readme",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shinrai"
},
"files": [
"src/",
"types/",
"index.mjs",
"index.cjs",
"README.md",
"LICENSE",
"package.json"
],
"devDependencies": {
"mocha": "^10.2.0",
"chai": "^4.3.10",
"typescript": "^5.2.0",
"@types/node": "^20.8.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"sideEffects": false
}