-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.54 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
{
"name": "@managed-components/twitter",
"version": "1.0.7",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts,.js, src",
"lint:fix": "eslint --ext .ts,.js, src --fix",
"bundle": "node esbuild.js",
"build": "npm run test && npm run lint && npm run typecheck && npm run bundle",
"typecheck": "tsc --project tsconfig.build.json --noEmit",
"test": "vitest run --globals --passWithNoTests",
"test:dev": "vitest --globals --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/managed-components/twitter.git"
},
"keywords": [
"webcm",
"managed-components",
"twitter"
],
"author": "Cloudflare Managed Components Team <[email protected]> (https://blog.cloudflare.com/zaraz-open-source-managed-components-and-webcm/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/managed-components/twitter/issues"
},
"homepage": "https://github.com/managed-components/twitter#readme",
"devDependencies": {
"@managed-components/types": "^1.3.13",
"@types/mustache": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"all-contributors-cli": "^6.20.0",
"esbuild": "^0.14.42",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"mustache": "^4.2.0",
"vitest": "^2.0.3"
}
}