-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 846 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 846 Bytes
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
{
"name": "@decipad/safejs",
"version": "1.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/lodash.omit": "^4.5.7",
"@types/node": "^20.1.4",
"typescript": "^5.0.2",
"vite": "~4.5.2",
"vite-plugin-dts": "^2.3.0"
},
"license": "MIT",
"description": "This repo intends to safely run JavaScript into a website using web workers",
"main": "dist/safejs.js",
"repository": {
"type": "git",
"url": "git+https://github.com/decipad/safejs.git"
},
"keywords": [
"codeblock",
"safe",
"javascript"
],
"author": "Decipad",
"bugs": {
"url": "https://github.com/decipad/safejs/issues"
},
"homepage": "https://github.com/decipad/safejs#readme",
"files": [
"./dist/*"
]
}