-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.65 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
{
"name": "@askrjs/monaco",
"version": "0.2.1",
"description": "Thin Monaco editor wrapper for Askr applications",
"keywords": [
"askr",
"editor",
"monaco",
"ui",
"wrapper"
],
"homepage": "https://github.com/askrjs/askr-monaco#readme",
"bugs": {
"url": "https://github.com/askrjs/askr-monaco/issues"
},
"license": "Apache-2.0",
"author": {
"name": "askrjs",
"url": "https://github.com/askrjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askrjs/askr-monaco.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./monaco-editor": {
"types": "./dist/components/monaco-editor/index.d.ts",
"import": "./dist/components/monaco-editor/index.js"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"import": "./dist/testing/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"clean": "npx rimraf dist node_modules",
"dev": "vp pack --watch",
"fmt": "vp fmt .",
"lint": "vp lint .",
"typecheck": "npm run test:types",
"test:publint": "publint",
"pack:check": "npm pack --ignore-scripts --dry-run --json",
"check": "npm run lint && npm run typecheck && npm test && npm run build && npm run test:publint && npm run pack:check",
"prepack": "npm run build",
"prepublishOnly": "npm run check",
"test": "npm run test:unit && npm run test:checks && npm run test:jsdom && npm run test:browser",
"test:browser": "vp test run --config vitest.test.browser.config.ts",
"test:checks": "vp test run -c vitest.test.checks.config.ts",
"test:jsdom": "npm run build && vp test run --config vitest.test.jsdom.config.ts",
"test:types": "tsc -p tsconfig.type-tests.json --noEmit",
"test:unit": "npm run test:types && vp test run --config vitest.test.unit.config.ts"
},
"devDependencies": {
"@askrjs/askr": ">=0.2.3 <0.3.0",
"@askrjs/vite": ">=0.2.1 <0.3.0",
"@types/node": "^26.3.0",
"@vitest/browser-playwright": "4.1.10",
"axe-core": "^4.13.0",
"jsdom": "^30.0.1",
"monaco-editor": "^0.56.0",
"playwright": "^1.62.1",
"publint": "^0.3.24",
"typescript": "^7.0.2",
"vite-plus": "^0.2.8"
},
"peerDependencies": {
"@askrjs/askr": ">=0.2.3 <0.3.0",
"monaco-editor": "^0.56.0"
},
"overrides": {
"dompurify": "3.4.13"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "npm@12.0.1"
}