-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.39 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.39 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
{
"name": "@rocket.chat/apps-compiler",
"version": "0.5.1",
"description": "The Rocket.Chat apps compiler",
"main": "index.js",
"engines": {
"node": ">=22.0.0",
"typescript": "^5.8.3"
},
"engineStrict": true,
"scripts": {
"test": "mocha -r ts-node/register './tests/**/*.spec.ts'",
"test:watch": "mocha --require ts-node/register --watch --watch-files src, 'tests/**/*.ts'",
"build": "rm -rf dist && mkdir dist && cp package.json dist && tsc",
"build:prod": "npm run build -- --sourceMap false --declarationMap false && cp LICENSE dist && cp README.md dist",
"lint": "npx eslint src/**/*.ts",
"release": "npm run build:prod && cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.Apps-compiler.git"
},
"keywords": [
"apps",
"compiler",
"rocket.chat"
],
"author": "Rocket.Chat",
"license": "MIT",
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.Apps-compiler/issues"
},
"homepage": "https://github.com/RocketChat/Rocket.Chat.Apps-compiler#readme",
"devDependencies": {
"@rocket.chat/eslint-config": "^0.7.0",
"@types/chai": "^4.2.12",
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/lodash.clonedeep": "^4.5.3",
"@types/mocha": "^8.0.0",
"@types/node": "~22.14.1",
"@types/tv4": "^1.2.29",
"@types/yauzl": "^2.10.3",
"@types/yazl": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^8.45.0",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"ts-node": "^9.1.1"
},
"dependencies": {
"@rocket.chat/apps-engine": "^1.28.0-alpha.5428",
"esbuild": "^0.12.16",
"figures": "^3.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"lodash.clonedeep": "^4.5.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"tv4": "^1.3.0",
"typescript": "^5.8.3",
"yauzl": "^3.2.0",
"yazl": "^2.5.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test"
}
}
}