-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "content-tag",
"version": "3.0.0",
"description": "A rust program that uses a fork of swc to parse and transform Javascript containing the content-tag proposal",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/embroider-build/content-tag.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"browser": {
"types": "./index.d.ts",
"default": "./pkg/standalone.js"
},
"default": {
"types": "./index.d.cts",
"default": "./pkg/node.cjs"
}
}
},
"files": [
"pkg/*",
"pkg/node/*",
"pkg/standalone/*",
"index.d.ts",
"index.d.cts"
],
"scripts": {
"build": "./build.sh",
"prepack": "./build.sh",
"ci:node": "mocha 'test/*.{js,cjs}'",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:package": "publint",
"lint:published-types": "attw --pack",
"start": "vite",
"test": "npm run ci:node"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.2",
"chai": "^4.3.7",
"code-equality-assertions": "1.0.1",
"concurrently": "^8.2.2",
"eslint": "^8.44.0",
"mocha": "^10.2.0",
"publint": "^0.2.6",
"release-plan": "^0.5.0",
"toml": "^3.0.0",
"vite": "^5.0.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}