-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.98 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.98 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
97
98
99
100
101
{
"name": "interacto",
"description": "Front-end framework for processing user interface events in TypeScript",
"version": "8.2.0",
"author": "Arnaud Blouin",
"contributors": [
"Gwendal Didot",
"Rémi Daniel"
],
"keywords": [
"event processing",
"user interaction",
"user interface",
"ui",
"undo",
"redo",
"front-end",
"framework",
"touch",
"dnd",
"drag and drop",
"typescript"
],
"bugs": {
"url": "https://github.com/interacto/interacto-ts/issues"
},
"homepage": "https://github.com/interacto/interacto-ts",
"repository": "https://github.com/interacto/interacto-ts.git",
"license": "GPL-3.0",
"main": "./dist/interacto.js",
"module": "./dist/interacto.mjs",
"types": "./dist/interacto.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/interacto.d.ts",
"default": "./dist/interacto.mjs"
}
}
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@rollup/plugin-terser": "1.0.0",
"@stryker-mutator/core": "9.6.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "22.18.13",
"@typescript/native-preview": "^7.0.0-dev.20260427.1",
"@vitest/coverage-v8": "4.1.5",
"@vitest/eslint-plugin": "1.6.16",
"barrelsby": "2.8.1",
"eslint": "10.2.1",
"eslint-plugin-array-func": "5.1.1",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-tsdoc": "0.5.2",
"eslint-plugin-unicorn": "64.0.0",
"globals": "17.5.0",
"husky": "9.1.7",
"interacto-nono": "0.6.0",
"jsdom": "29.1.0",
"rollup": "4.60.2",
"rollup-plugin-dts": "6.4.1",
"rollup-plugin-esbuild": "6.2.1",
"typedoc": "0.28.19",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vitest": "4.1.5",
"vitest-mock-extended": "4.0.0"
},
"scripts": {
"package": "npm run pre-build && npm run build && npm run doc",
"build": "rollup -c",
"generate-barrels": "barrelsby -c ./barrelsby-config.json --delete",
"compile": "tsc",
"compile-native": "tsgo",
"compile-test-native": "tsgo -p tsconfig.test.json",
"compile-test": "tsc -p tsconfig.test.json",
"pre-build": "npm run clean && npm run generate-barrels && npm run compile && npm run lint && npm run compile-test && npm run coverage",
"clean": "(rm -rf dist out-test coverage .stryker-tmp)",
"clean-all": "npm run clean && (rm -rf reports docs) && vitest --clearCache",
"test": "vitest --run",
"lint": "eslint src test",
"lint-fix": "eslint src test --fix",
"coverage": "vitest run --coverage",
"doc": "typedoc --out docs src/interacto.ts",
"test-publish": "npm pack",
"gen-changelog": "git log --pretty=\"* %s\" $(git describe --tags --abbrev=0 @^)..@ | sort > commits",
"mutation": "npx stryker run",
"commitlint": "commitlint --edit"
},
"dependencies": {
"rxjs": "7.8.2"
},
"files": [
"dist/"
],
"engines": {
"node": ">=20.10.0"
}
}