2024-10-22 18:33:44 -04:00
|
|
|
{
|
|
|
|
"name": "obsidian-testing-framework",
|
|
|
|
"packageManager": "yarn@4.5.1",
|
|
|
|
"dependencies": {
|
2024-10-22 18:58:34 -04:00
|
|
|
"@codemirror/language": "https://github.com/lishid/cm-language",
|
|
|
|
"@codemirror/state": "^6.0.1",
|
|
|
|
"@codemirror/view": "^6.0.1",
|
2024-10-22 18:33:44 -04:00
|
|
|
"typescript": "^5.6.3"
|
|
|
|
},
|
|
|
|
"version": "",
|
|
|
|
"files": [
|
|
|
|
"./bin/*",
|
|
|
|
"./lib/*"
|
|
|
|
],
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"default": "./lib/index.js",
|
|
|
|
"types": "./lib/index.d.ts"
|
|
|
|
},
|
|
|
|
"./utils": {
|
|
|
|
"default": "./lib/utils.js",
|
|
|
|
"types": "./lib/utils.d.ts"
|
2024-10-22 18:58:34 -04:00
|
|
|
},
|
|
|
|
"./fixture": {
|
|
|
|
"default": "./lib/fixtures.js",
|
|
|
|
"types": "./lib/fixtures.d.ts"
|
2024-10-22 18:33:44 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"main": "./lib/index.js",
|
|
|
|
"typings": "./lib/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"lint": "tslint -c tslint.json src/**/*.ts",
|
|
|
|
"prepublish": "npm run build"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@playwright/test": "^1.48.1",
|
|
|
|
"@types/node": "^22.7.8",
|
|
|
|
"obsidian": "latest",
|
|
|
|
"playwright": "^1.48.1",
|
|
|
|
"vitest": "^2.1.3"
|
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"./*"
|
2024-10-22 18:58:34 -04:00
|
|
|
],
|
|
|
|
"type": "module"
|
2024-10-22 18:33:44 -04:00
|
|
|
}
|