-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 KB
/
package.json
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
{
"name": "@kengoldfarb/log",
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"version": "2.0.3",
"types": "./build/index.d.ts",
"type": "module",
"main": "./build/index.cjs.js",
"exports": {
"import": "./build/index.esm.js",
"require": "./build/index.cjs.js",
"default": "./build/index.esm.js"
},
"description": "A simple isomorphic logger",
"keywords": [
"node",
"log",
"logger"
],
"homepage": "https://github.com/kengoldfarb/log",
"bugs": {
"url": "https://github.com/kengoldfarb/log/issues"
},
"author": "Ken Goldfarb <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kengoldfarb/log.git"
},
"scripts": {
"build": "npm run clean && npm run build:rollup",
"build:rollup": "rollup -c rollup.config.js",
"watch": "chokidar 'src/**/*.(js|jsx|ts|tsx)' -c 'npm run build'",
"clean": "rm -rf build/",
"lint": "eslint '**/*.ts' && tsc -p . --noEmit",
"lint:fix": "eslint --fix '**/*.ts'",
"test": "vitest run",
"release": "semantic-release",
"arkit": "arkit -f index.ts -o docs/images/arkit.svg",
"arkit.png": "arkit -f index.ts -o docs/images/arkit.png"
},
"dependencies": {},
"devDependencies": {
"@kengoldfarb/semantic-release-config": "^1.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/faker": "^5",
"@types/node": "^20.11.19",
"arkit": "^1.6.4",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-kengoldfarb": "1.5.0",
"eslint-plugin-prettier": "^5.1.3",
"faker": "^5",
"prettier": "^3.2.5",
"rollup": "^4.11.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-replace": "^2.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}