44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "obsidian-testing-framework",
|
|
"packageManager": "yarn@4.5.1",
|
|
"dependencies": {
|
|
"@codemirror/language": "https://github.com/lishid/cm-language",
|
|
"@codemirror/state": "^6.0.1",
|
|
"@codemirror/view": "^6.0.1",
|
|
"@playwright/test": "^1.48.1",
|
|
"asar": "^3.2.0",
|
|
"electron": "^33.0.2",
|
|
"obsidian": "latest",
|
|
"playwright": "^1.48.1",
|
|
"tmp": "^0.2.3",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"version": "0.0.1",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/index.d.ts",
|
|
"default": "./lib/index.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./lib/util.d.ts",
|
|
"default": "./lib/util.js"
|
|
},
|
|
"./fixture": {
|
|
"types": "./lib/fixtures.d.ts",
|
|
"default": "./lib/fixtures.js"
|
|
}
|
|
},
|
|
"main": "./lib/index.js",
|
|
"typings": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "tslint -c tslint.json src/**/*.ts",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/tmp": "^0",
|
|
"vitest": "^2.1.3"
|
|
},
|
|
"type": "module"
|
|
}
|