-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "@opencreek/ext",
"version": "2.8.0",
"description": "",
"main": "build/index.js",
"files": [
"build/**",
"src/**"
],
"scripts": {
"test": "ava",
"lint": "prettier --check . && eslint --cache --max-warnings=0 .",
"lint:fix": "prettier --write . && eslint --cache --max-warnings=0 --fix .",
"build": "tsc"
},
"author": "Opencreek Technology<oss@opencreek.tech>",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "github:opencreek/typescript-extensions"
},
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@types/node": "^24.2.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"auto": "^11.3.0",
"ava": "^6.4.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "5.8.3"
},
"prettier": {
"semi": false
},
"ava": {
"files": [
"src/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@opencreek/deno-std-collections": "^0.109.1"
}
}