-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.72 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.72 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@anikitenko/fdo-sdk",
"repository": {
"type": "git",
"url": "https://github.com/anikitenko/fdo-sdk.git"
},
"version": "1.5.4",
"description": "SDK for FlexDevOPs (FDO) application modules",
"keywords": [
"fdo",
"flex",
"devops",
"flexdevops",
"sdk",
"fdo-sdk",
"plugin",
"plugin-framework",
"electron",
"desktop-app",
"dom-builder",
"typescript"
],
"author": "anikitenko",
"license": "ISC",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"homepage": "https://docs.sdk.fdo.alexvwan.me",
"bugs": {
"url": "https://github.com/anikitenko/fdo-sdk/issues"
},
"bin": {
"fdo-sdk": "bin/fdo-sdk.js"
},
"main": "dist/fdo-sdk.bundle.js",
"types": "dist/@types/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/@types/index.d.ts",
"require": "./dist/fdo-sdk.bundle.js",
"default": "./dist/fdo-sdk.bundle.js"
},
"./package.json": "./package.json"
},
"files": [
"bin/**/*.js",
"scripts/fdo-sdk-migrate.mjs",
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/**/*.json",
"docs/**/*.md",
"examples"
],
"scripts": {
"prepare": "husky",
"build": "npm run build:bundle && npm run build:types",
"build:bundle": "webpack --config webpack.config.cjs",
"build:types": "tsc --project tsconfig.build.json",
"test:examples": "tsc --project examples/tsconfig.json --noEmit",
"verify:types:local": "node scripts/verify-types-local.mjs",
"verify:types:pack": "node scripts/verify-types-pack.mjs",
"verify:docs": "node scripts/verify-docs.mjs",
"migrate": "node scripts/fdo-sdk-migrate.mjs",
"verify:pack": "npm run verify:types:pack",
"prepack": "npm run build && npm run verify:types:local",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"commitlint": "commitlint --from=HEAD~1 --to=HEAD --verbose",
"coverage:open": "npx opn coverage/lcov-report/index.html || true",
"prepublishOnly": "npm test && npm run test:examples && npm run verify:docs && npm run build && npm run verify:pack"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/write-file-atomic": "^4.0.3",
"@vitest/coverage-v8": "^4.1.2",
"husky": "^9.1.7",
"ts-loader": "^9.5.4",
"ts-morph": "^27.0.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-sources": "^3.3.4"
},
"dependencies": {
"@expo/sudo-prompt": "github:expo/sudo-prompt",
"goober": "^2.1.18",
"pify": "^6.1.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"write-file-atomic": "^7.0.1"
}
}