-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.14 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
{
"name": "at-decorators",
"version": "0.0.0-semantically-released",
"description": ":wrench: A set of general-purpose decorators written in TypeScript following 'tc39/proposal-decorators (Stage 3)'.",
"keywords": [
"decorators"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/at-decorators.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "build-ts lib",
"cleanup": "bun wb lint --fix --format",
"format": "bun wb lint --format",
"lint": "bun wb lint",
"lint-fix": "bun wb lint --fix",
"prepare": "(bun lefthook install || true) && (test ! -f .lefthook/normalize-bun-lockfile.sh || bash .lefthook/normalize-bun-lockfile.sh)",
"start": "bun src/index.ts",
"test": "bun wb test",
"test/ci": "bun wb test-on-ci",
"typecheck": "bun wb typecheck",
"verify": "bun wb verify",
"verify-full": "bun wb verify --full"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/plugin-proposal-decorators": "8.0.2",
"@rolldown/plugin-babel": "0.2.3",
"@tsconfig/bun": "1.0.11",
"@tsconfig/node-lts": "24.0.1",
"@tsconfig/node-ts": "23.6.4",
"@types/babel__core": "7.20.5",
"@types/bun": "1.4.0",
"@types/node": "26.4.0",
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.8",
"@willbooster/wb": "22.1.4",
"build-ts": "21.0.11",
"conventional-changelog-conventionalcommits": "10.4.0",
"lefthook": "2.1.12",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"rolldown": "1.2.6",
"semantic-release": "25.0.9",
"sort-package-json": "4.0.0",
"typescript": "7.0.2",
"vitest": "4.1.11"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}