-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
64
65
66
67
68
{
"name": "@ember/string",
"version": "4.0.0",
"description": "A set of utilities to transform strings",
"repository": "https://github.com/emberjs/ember-string",
"license": "MIT",
"author": "",
"type": "module",
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"declarations/*"
]
}
},
"files": [
"dist",
"declarations",
"addon-main.cjs"
],
"scripts": {
"build": "vite build",
"lint": "pnpm build; concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:package": "publint",
"lint:published-types": "pnpm pack; attw; rm *.tgz",
"prepack": "pnpm build",
"start": "vite build --watch",
"test": "cd tests && pnpm test",
"test:types": "tsc --noEmit --emitDeclarationOnly false"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.0",
"@embroider/addon-dev": "^4.1.0",
"@tsconfig/ember": "^3.0.2",
"@types/ember__debug": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ember": "^11.12.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.0.1",
"expect-type": "^0.18.0",
"prettier": "^3.1.1",
"publint": "^0.2.7",
"release-plan": "^0.9.0",
"typescript": "^5.3.3",
"vite": "^5.3.2",
"vite-plugin-dts": "^3.9.1"
},
"volta": {
"node": "20.11.1",
"pnpm": "9.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}