-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "focusany-sdk",
"version": "1.3.8",
"description": "TypeScript definitions for FocusAny",
"main": "./index.js",
"types": "./index.d.ts",
"bin": {
"focusany": "./bin/command.js"
},
"repository": {
"type": "git",
"url": "https://github.com/modstart-lib/focusany"
},
"keywords": [
"FocusAny"
],
"author": "ModStart",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/modstart-lib/focusany/issues"
},
"homepage": "https://github.com/modstart-lib/focusany#readme",
"scripts": {
"build": "npx tsc --project tsconfig.json",
"test": "node tests/test-release-prepare.js"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./shim": {
"types": "./focusany-shim.d.ts",
"default": "./focusany-shim.js"
}
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@types/node": "^20.0.0",
"terser": "^5.43.1",
"typescript": "^5.0.0"
}
}