-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2.18 KB
/
package.json
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
{
"name": "@illandril/foundryvtt-chat-enhancements",
"version": "3.1.0",
"description": "Illandril's Chat Enhancements: Enhances the chat by showing player names in IC messages, replacing actor names with token names, and showing who you are currently speaking as.",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"prebuild:run": "npm run clean",
"build": "npm run build:run -- --environment BUILD:production",
"build:watch": "npm run build:dev -- --watch",
"build:dev": "npm run build:run -- --environment BUILD:development",
"build:run": "rollup --config rollup.config.js",
"lint": "biome check .",
"lint:fix": "npm run lint -- --apply",
"type-check": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build:publish",
"preversion": "npm run validate",
"validate": "run-s type-check lint test:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/illandril/FoundryVTT-chat-enhancements.git"
},
"keywords": [
"FoundryVTT"
],
"author": "Joe Spandrusyszyn",
"license": "MIT",
"bugs": {
"url": "https://github.com/illandril/FoundryVTT-chat-enhancements/issues"
},
"homepage": "https://github.com/illandril/FoundryVTT-chat-enhancements#readme",
"dependencies": {
"@illandril/foundryvtt-utils": "^10.1.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@illandril/biome-config": "^1.4.0",
"@illandril/foundryvtt-types": "^8.1.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.13",
"babel-jest": "^29.7.0",
"babel-preset-minify": "^0.5.2",
"chance": "^1.1.12",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.3.1",
"npm-run-all2": "^6.2.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.6.2"
}
}