-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
80
81
82
83
84
85
{
"name": "node-simple-context",
"version": "1.7.0",
"author": "maxgfr",
"license": "MIT",
"description": "A minimalist context for node, inspired by React Context",
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": {
"import": "./build/index.d.mts",
"require": "./build/index.d.ts"
},
"import": "./build/index.mjs",
"require": "./build/index.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxgfr/node-simple-context.git"
},
"bugs": {
"url": "https://github.com/maxgfr/node-simple-context/issues"
},
"homepage": "https://github.com/maxgfr/node-simple-context#readme",
"files": [
"build"
],
"keywords": [
"context",
"node",
"node-simple-context",
"minimalist",
"react-context",
"AsyncLocalStorage",
"typescript"
],
"scripts": {
"start": "node build/index.js",
"dev": "nodemon",
"develop": "node -r @swc-node/register ./src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf build",
"build": "tsup",
"build:tsc": "tsc -p tsconfig.build.json",
"build:watch": "tsup --watch",
"build:swc": "swc ./src -d build",
"build:swc:watch": "swc ./src -d build -w",
"lint": "eslint ./src --ext .ts",
"prettier": "prettier --write './src/**/*.{ts,js,json}'",
"format:check": "prettier --check './src/**/*.{ts,js,json}'",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.5",
"@semantic-release/npm": "13.1.4",
"@semantic-release/release-notes-generator": "14.1.0",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.7.9",
"@swc/core": "1.15.3",
"@swc/jest": "0.2.39",
"@types/jest": "29.5.14",
"@types/node": "18.19.130",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-jest": "27.9.0",
"jest": "29.7.0",
"nodemon": "3.1.11",
"prettier": "3.7.4",
"rimraf": "5.0.10",
"semantic-release": "25.0.3",
"tsup": "^8.5.1",
"typescript": "5.9.3"
}
}